cmake_minimum_required(VERSION 2.6)

project(hello)

find_package(YARP)

message(${YARP_INCLUDE_DIRS})
include_directories(${YARP_INCLUDE_DIRS})

add_executable(hello hello.cpp)

target_link_libraries(hello ${YARP_LIBRARIES})



